home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 May / SGI IRIX 6.5 Applications 2004 May.iso / dist / java3d.idb / usr / demos / java / j3d / programs / examples / Text2D / Text2DTest.java.z / Text2DTest.java
Encoding:
Java Source  |  2003-08-08  |  6.0 KB  |  187 lines

  1. /*
  2.  *    @(#)Text2DTest.java 1.11 02/10/21 13:55:56
  3.  *
  4.  * Copyright (c) 1996-2002 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  *
  10.  * - Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  *
  13.  * - Redistribution in binary form must reproduce the above copyright
  14.  *   notice, this list of conditions and the following disclaimer in
  15.  *   the documentation and/or other materials provided with the
  16.  *   distribution.
  17.  *
  18.  * Neither the name of Sun Microsystems, Inc. or the names of
  19.  * contributors may be used to endorse or promote products derived
  20.  * from this software without specific prior written permission.
  21.  *
  22.  * This software is provided "AS IS," without a warranty of any
  23.  * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
  24.  * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
  25.  * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
  26.  * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES
  27.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  28.  * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
  29.  * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
  30.  * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
  31.  * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
  32.  * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE,
  33.  * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  34.  *
  35.  * You acknowledge that Software is not designed,licensed or intended
  36.  * for use in the design, construction, operation or maintenance of
  37.  * any nuclear facility.
  38.  */
  39.  
  40. import java.applet.Applet;
  41. import java.awt.*;
  42. import java.awt.Font;
  43. import java.awt.event.*;
  44. import com.sun.j3d.utils.applet.MainFrame;
  45. import com.sun.j3d.utils.geometry.Text2D;
  46. import com.sun.j3d.utils.universe.*;
  47. import javax.media.j3d.*;
  48. import javax.vecmath.*;
  49.  
  50. public class Text2DTest extends Applet {
  51.  
  52.     private SimpleUniverse u = null;
  53.     
  54.     public BranchGroup createSceneGraph() {
  55.     // Create the root of the branch graph
  56.     BranchGroup objRoot = new BranchGroup();
  57.  
  58.         // Create a Transformgroup to scale all objects so they
  59.         // appear in the scene.
  60.         TransformGroup objScale = new TransformGroup();
  61.         Transform3D t3d = new Transform3D();
  62.         t3d.setScale(0.4);
  63.         objScale.setTransform(t3d);
  64.         objRoot.addChild(objScale);
  65.  
  66.     // Create the transform group node and initialize it to the
  67.     // identity.  Enable the TRANSFORM_WRITE capability so that
  68.     // our behavior code can modify it at runtime.  Add it to the
  69.     // root of the subgraph.
  70.     TransformGroup objTrans = new TransformGroup();
  71.     objTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
  72.  
  73.     BoundingSphere bounds =
  74.         new BoundingSphere(new Point3d(0.0,0.0,0.0), 100.0);
  75.  
  76.     TransformGroup textTranslationGroup;
  77.     Transform3D textTranslation;
  78.     float yPos = -.5f;
  79.     Shape3D textObject = new Text2D("Rotating Yellow Text",
  80.                     new Color3f(1f, 1f, 0f),
  81.                     "Serif",
  82.                     60,
  83.                     Font.BOLD);
  84.     Appearance app = textObject.getAppearance();
  85.     
  86.     PolygonAttributes pa = app.getPolygonAttributes();
  87.     if (pa == null)
  88.         pa = new PolygonAttributes();
  89.     pa.setCullFace(PolygonAttributes.CULL_NONE);
  90.     if (app.getPolygonAttributes() == null)
  91.         app.setPolygonAttributes(pa);
  92.     objTrans.addChild(textObject);
  93.  
  94.     
  95.     textTranslation = new Transform3D();
  96.     textTranslation.setTranslation(new Vector3f(0f, yPos, 0f));
  97.     textTranslationGroup = new TransformGroup(textTranslation);
  98.     textTranslationGroup.addChild(objTrans);
  99.     objScale.addChild(textTranslationGroup);
  100.     yPos += .5f;
  101.  
  102.     /* Blue 40point text*/
  103.     textObject = new Text2D("Blue 40point Text",
  104.                 new Color3f(0f, 0f, 1f),
  105.                 "Serif",
  106.                 40,
  107.                 Font.BOLD);
  108.     textTranslation = new Transform3D();
  109.     textTranslation.setTranslation(new Vector3f(0f, yPos, 0f));
  110.     textTranslationGroup = new TransformGroup(textTranslation);
  111.     textTranslationGroup.addChild(textObject);
  112.     objScale.addChild(textTranslationGroup);
  113.     yPos += .5f;
  114.  
  115.     /* Green italic text*/
  116.     textObject = new Text2D("Green Italic Text",
  117.                 new Color3f(0f, 1f, 0f),
  118.                 "Serif",
  119.                 70,
  120.                 Font.ITALIC);
  121.     textTranslation = new Transform3D();
  122.     textTranslation.setTranslation(new Vector3f(0f, yPos, 0f));
  123.     textTranslationGroup = new TransformGroup(textTranslation);
  124.     textTranslationGroup.addChild(textObject);
  125.     objScale.addChild(textTranslationGroup);
  126.     yPos += .5f;
  127.     
  128.     
  129.     // Create a new Behavior object that will perform the desired
  130.     // operation on the specified transform object and add it into
  131.     // the scene graph.
  132.     Transform3D yAxis = new Transform3D();
  133.     Alpha rotationAlpha = new Alpha(-1, Alpha.INCREASING_ENABLE,
  134.                     0, 0,
  135.                     4000, 0, 0,
  136.                     0, 0, 0);
  137.  
  138.     RotationInterpolator rotator =
  139.         new RotationInterpolator(rotationAlpha, objTrans, yAxis,
  140.                      0.0f, (float) Math.PI*2.0f);
  141.     rotator.setSchedulingBounds(bounds);
  142.     objTrans.addChild(rotator);
  143.  
  144.     return objRoot;
  145.     }
  146.  
  147.     public Text2DTest() {
  148.     }
  149.  
  150.     public void init() {
  151.     setLayout(new BorderLayout());
  152.     GraphicsConfiguration config =
  153.            SimpleUniverse.getPreferredConfiguration();
  154.  
  155.         Canvas3D c = new Canvas3D(config);
  156.     add("Center", c);
  157.  
  158.     // Create a simple scene and attach it to the virtual universe
  159.     BranchGroup scene = createSceneGraph();
  160.     u = new SimpleUniverse(c);
  161.     MoverBehavior navigator =
  162.        new MoverBehavior(u.getViewingPlatform().getViewPlatformTransform());
  163.     scene.addChild(navigator);
  164.  
  165.         // Have Java 3D perform optimizations on this scene graph.
  166.         scene.compile();
  167.  
  168.         // This will move the ViewPlatform back a bit so the
  169.         // objects in the scene can be viewed.
  170.         u.getViewingPlatform().setNominalViewingTransform();
  171.  
  172.     u.addBranchGraph(scene);
  173.     }
  174.  
  175.     public void destroy() {
  176.     u.cleanup();
  177.     }
  178.  
  179.     //
  180.     // The following allows HelloUniverse to be run as an application
  181.     // as well as an applet
  182.     //
  183.     public static void main(String[] args) {
  184.     new MainFrame(new Text2DTest(), 256, 256);
  185.     }
  186. }
  187.